home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / dev / c / agl103p.lha / src / agl / sas.makefile < prev    next >
Makefile  |  1994-12-08  |  334b  |  25 lines

  1. # makefile for SAS 6.50
  2.  
  3. INCLUDES = agl.h usr:include/gl.h usr:include/device.h
  4. OUTPUT = usr:lib/gl.lib
  5. CC = sc
  6.  
  7.  
  8. all: $(OUTPUT)
  9.  
  10.  
  11. ### Amiga GL        ###
  12. $(OUTPUT): $(OFILES)
  13.     echo >$(OUTPUT)
  14.     delete $(OUTPUT)
  15.     oml $(OUTPUT) r $(OFILES)
  16.  
  17.  
  18. #$(OFILES): $(INCLUDES)
  19.  
  20.  
  21. ### Generic Rule    ###
  22. .c.o: $(INCLUDES)
  23.     $(CC) $*
  24.     copy $*.c COMPILEbackup
  25.